home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2001 January / PC-WELT 01-2001.ISO / software / linux / netscap6 / xpi / jre.xpi / symlink.sh < prev   
Encoding:
Linux/UNIX/POSIX Shell Script  |  2000-11-08  |  248 b   |  12 lines

  1. #!/bin/sh
  2.  
  3. #-------------------------------------------------------
  4. # Hack to allow symlinking (required for Sun's JRE) in
  5. # a zippy.
  6. #
  7. # usage: symlink.sh <srcfile> <newlink>
  8. #
  9. #-------------------------------------------------------
  10.  
  11. ln -s $1 $2
  12.